There are 2 ways to install LXD. One is through snap and the other is through APT. The way through snap is usually the better way.
$ sudo snap install lxd
$ sudo add-apt-repository ppa:ubuntu-lxc/lxd-stable
$ sudo apt update
$ sudo apt full-upgrade
$ sudo apt install lxd
$ lxd init
$ sudo reboot
IMPORTANT! DON’T RUN LXC COMMANDS WITH SUDO!
$ lxc list
For an Ubuntu container:
$ lxc launch ubuntu: <container_name>
For an Arch Linux container:
For newer LXD versions:
$ lxc launch images:archlinux <container_name>
For older LXD version it may be:
$ lxc launch images:archlinux/current/amd64 <container_name>
$ lxc delete <container_name>
$ lxc exec bash <container_name>
$ lxc start <container_name>
$ lxc restart <container_name>
$ lxc stop <container_name>
$ lxc snapshot <container_name> [snapshot_name]
[snapshot_name]
is optional.
$ lxc restore <container_name> <snapshot_name>
The snapshot names are normally formatted like this: snap<number>
/var/lib/lxd/containers/<container_name>
/var/lib/lxd/containers/<container_name>/rootfs/root
/var/lib/lxd/containers/<container_name>/rootfs/home/<user_name>
/var/lib/lxd/snapshots/<snapshot_name>
Example:
lxc config device add <container> <somename> disk path=<target_path> source=<source_path>
Real example:
lxc config device add harp harp-somefolder disk path=/harp/somefolder/kb source=/mnt/storagedisk/data/SomeUser/files/Some\ Folder
To set a device to readonly (so the container cannot change files), execute the following command:
lxc config device set <container> <devicename> readonly=true
lxc config show <container>